home *** CD-ROM | disk | FTP | other *** search
/ ADA Programming Guide / ADA Programming Guide.iso / ada_gwu / pretty / simple.ada < prev    next >
Text File  |  1996-01-30  |  364b  |  15 lines

  1. pragma Form_Set(nasa_standard);
  2. --           Test program for Meridian Ada compiler.            --
  3. --        This program prints the numbers from 1 to 10.         --
  4. --      Copyright (C) 1986 Meridian Software Systems, Inc.      --
  5.  
  6. with ada_io; use ada_io;
  7. procedure simple is
  8. begin
  9. for i in 1..10 loop
  10. put(i);
  11. put(' ');
  12. end loop;
  13. new_line;
  14. end;
  15.